home *** CD-ROM | disk | FTP | other *** search
/ infoROM 17,000 Product Descriptions for Business / infoROM Product Descriptions for Business - ESX Interactive.ISO / argdemos / objdemo / toolkit.exe / NEW_REPO.DCL < prev    next >
Encoding:
Text File  |  1992-12-07  |  3.0 KB  |  130 lines

  1. q_r : dialog {
  2.     label = "Query/Report";
  3.     : concatenation {
  4.         : button {
  5.             label = "Component...";
  6.             key = "cmp_but";
  7.             width = 12;
  8.             fixed_width = true;
  9.         }
  10.         : edit_box {
  11.             key = "cmp_box";
  12.             edit_width = 16;
  13.             fixed_width = true;
  14.         }
  15.     }
  16.     : spacer { height = 0.5; }
  17.     : boxed_column {
  18.         label = "Variable Selection Criteria:";
  19.         : concatenation {
  20.             : button {
  21.                 label = "Filter...";
  22.                 key = "flt_but";
  23.                 width = 12;
  24.                 fixed_width = true;
  25.             }
  26.             : edit_box {
  27.                 key = "flt_box";
  28.                 edit_width = 16;
  29.                 fixed_width = true;
  30.             }
  31.         }
  32.         : row {
  33.             fixed_width = true;
  34.             alignment = centered;
  35.             : button {
  36.                 label = "None";
  37.                 key = "non_flt";
  38.                 fixed_width = true;
  39.             }
  40.             : spacer { width = 2; }
  41.             : button {
  42.                 label = "Create";
  43.                 key = "cre_fil";
  44.                 fixed_width = true;
  45.             }
  46.         }
  47.     }
  48.     : spacer { height = 0.5; }
  49.     : boxed_column {
  50.         label = "Report:";
  51.         : concatenation {
  52.             : button {
  53.                 label = "Report...";
  54.                 key = "rep_but";
  55.                 width = 12;
  56.                 fixed_width = true;
  57.             }
  58.             : edit_box {
  59.                 key = "rep_box";
  60.                 edit_width = 16;
  61.                 fixed_width = true;
  62.             }
  63.         }
  64.         : radio_column {
  65.             fixed_width = true;
  66.             alignment = centered;
  67.             : radio_button {
  68.                 label = "Detail Report Form";
  69.                 key = "det_but";
  70.             }
  71.             : radio_button {
  72.                 label = "Summary Report Form";
  73.                 key = "sum_but";
  74.             }
  75.         }
  76.         : row {
  77.             fixed_width = true;
  78.             alignment = centered;
  79.             : button {
  80.                label = "Create";
  81.                key = "cre_rep";
  82.                fixed_width = true;
  83.             }
  84.         }
  85.     }
  86.     : spacer { height = 0.5; }
  87.     ok_cancel;
  88.     : errtile { width =15; }
  89. }
  90.  
  91. exi_flt : dialog {
  92.     label = "Warning";
  93.     : concatenation {
  94.         : text {
  95.             label = "Filter ";
  96.         }
  97.         : text {
  98.             key = "name";
  99.             width = 10;
  100.         }
  101.     }
  102.     : text {
  103.         label = "Already exist, do you";
  104.     }
  105.     : text {
  106.         label = "wish to modify it ?";
  107.     }
  108.     ok_cancel;
  109. }
  110.  
  111. exi_rep : dialog {
  112.     label = "Warning";
  113.     : concatenation {
  114.         : text {
  115.             label = "Report ";
  116.         }
  117.         : text {
  118.             key = "name";
  119.             width = 10;
  120.         }
  121.     }
  122.     : text {
  123.         label = "Already exist, do you";
  124.     }
  125.     : text {
  126.         label = "wish to modify it ?";
  127.     }
  128.     ok_cancel;
  129. }
  130.